<HTML>
<HEAD>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">
<!-- Skrypt pochodzi z ksiki "101 praktycznych skryptw"  -->
<!-- autor: Marcin Lis    e-mail: 101scripts@marcinlis.com  -->
<SCRIPT LANGUAGE= "JavaScript" type= "text/javascript">
<!-- Ukrycie przed przegldarkami nie obsugujcymi JavaScriptu
var speed = 1;
var scrollSpeed = 1;
var isScrolling = false;
function mouseOver(direction){
 isScrolling = true;
 startScroll(direction);
}
function startScroll(direction){
 if (direction == 'up'){
         window.scrollBy(0, -scrollSpeed);
 }
 else if (direction == 'down'){
         window.scrollBy(0, scrollSpeed);
 }
 if (document.all){
         document.all['scrollLayer'].style.left = 0;
         document.all['scrollLayer'].style.top = document.body.scrollTop;
 }
 if (isScrolling){
         setTimeout("startScroll('" + direction + "')", speed);
 }
}
function stopScroll(){
 isScrolling = false;
}
// Koniec kodu JavaScript -->
</SCRIPT>
</HEAD>
<BODY>
<H1 align = "center">Tre strony</H1><H1 align = "center">Tre strony</H1>
<H1 align = "center">Tre strony</H1><H1 align = "center">Tre strony</H1>
<H1 align = "center">Tre strony</H1><H1 align = "center">Tre strony</H1>
<H1 align = "center">Tre strony</H1><H1 align = "center">Tre strony</H1>
<H1 align = "center">Tre strony</H1><H1 align = "center">Tre strony</H1>
<H1 align = "center">Tre strony</H1><H1 align = "center">Tre strony</H1>
<DIV ID="scrollLayer" style="position:absolute; left=0px; top:0px;">
<IMG     SRC="arrowup.gif"
 onMouseOver="mouseOver('up')"
 onMOuseOut="stopScroll()"><P></P>
<IMG     SRC="arrowdown.gif"
 onMouseOver="mouseOver('down')"
 onMOuseOut="stopScroll()">
</DIV>
</BODY>
</HTML>
